home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / handcurs.zip / FPOINT.C < prev    next >
C/C++ Source or Header  |  1993-07-05  |  328b  |  15 lines

  1. #include <windows.h>
  2.  
  3. #pragma argsused
  4. int PASCAL WinMain(HANDLE hInstance,HANDLE hPrevInstance,LPSTR LPSZCmdLine,int nCmdShow)
  5. {
  6.   if(!LoadLibrary("fpointl.dll"))
  7.     MessageBox(NULL,"fpointl.dll not found","FPOINT",MB_OK);
  8.   else
  9.     MessageBox(NULL,"Finger Pointer Installed.","FPOINT",MB_OK);
  10.   return 0;
  11. }
  12.  
  13.  
  14.  
  15.